home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 - Homepage / CHIP.BIN / share / htmledit / bashhtml / bashhtml.exe / %AppDir% / scripts / Add To Favorites.txt next >
Encoding:
Text File  |  2003-09-01  |  409 b   |  17 lines

  1. [DESCRIPTION]Creates buttons which move back or forward in the browser history.[/DESCRIPTION]
  2.  
  3. [HEAD CODE]<script language="JavaScript">
  4. <!--
  5. function HistoryNav(x) 
  6. {
  7.    history.go(x);
  8. }
  9. -->
  10. </script>[/HEAD CODE]
  11.  
  12. [BODY CODE]<form>
  13. <INPUT TYPE="button" VALUE=" BACK " onClick="HistoryNav(-1)">
  14. <INPUT TYPE="button" VALUE="FORWARD" onClick="HistoryNav(1)">
  15. </form>[/BODY CODE]
  16.  
  17. [NOTES][/NOTES]